Fixed Bottom Navigation Bar

Scroll this page to see the effect

The navigation bar will stay at the bottom of the page while scrolling

Some text some text some text some text..

Some text some text some text some text..

Some text some text some text some text..

Some text some text some text some text..

Some text some text some text some text..

Some text some text some text some text..

Some text some text some text some text..

Some text some text some text some text..

Some text some text some text some text..

Some text some text some text some text..

Some text some text some text some text..

Some text some text some text some text..

Some text some text some text some text..

Some text some text some text some text..

Some text some text some text some text..

Some text some text some text some text..

Some text some text some text some text..

Some text some text some text some text..

Some text some text some text some text..

Some text some text some text some text..

CSS MenuMaker
Skip to content WebHozz BlogKursus Web & Android di Jakarta Bandung Tutorial Membuat Menu Website Dengan CSS Framework March 4, 2015 putra lucio Belajar Web Design Hallo guys kita bertemu lagi .. Di artikel saya kali ini saya mencoba berbagi bagaimana cara membuat menu list yang menarik dengan sangat mudah.. berikut contoh hasil nya yang sudah di implementasikan pada konten yang sudah disiapkan menu nah sudah lihat kan contoh menu diatas , berikut tutorial memasukan menu tsb kedalam konten dan ada beberapa exampel yang bisa anda unduh langsung .. okey guys berikut langkah pertama silahkan download salah satu CSS Framwork Menu dibawah ini : Download Source source.zip (2.75 KB) Black Responsive source.zip (6.68 KB) Dropdown bluesky responsive source.zip (1.62 KB) Apple Css3 nah setelah source.zip diunduh .. extract file,kemudian Copy semua file( kecuali index) yang ada difolder cssmenu seperti dibawah ini extract Kemudian Paste pada folder konten website yang sudah anda siapkan.. kemudian File index.html yang tidak dicopy , edit dengan editor anda .. maka sourcode nya akan seperti ini 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 Okey Lalu kemudian copy link, penghubung yang ada di atara Tag dan masukan / paste di antara Tag Pembuka dan penutup anda.. begitu juga sourcode yang ada di antara tag Paste di bagian nav atau konten yang sudah ada sediakan. Berikut contoh Codingan yang sebelum nya anda lihat dibagian atas .. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 CSS MenuMaker
Mudah bukan ?? dengan adanya Css Frammwork kita tidak perlu lagi membuat code dari awal melainkan tinggal menyisipkan link dan sedikit code .. okey guys seperti biasa codingan diatas sekaligus penutup artikel saya kali ini.. kita akan bertemu lagi diartikel selanjutnya ..selamat mencoba !! Related Posts: 8 CSS Framework Terpopuler CSS Frameworkmembuat menu responsivemenu dropdownmenu kerenmenu sederhanatutorial membuat menu dengan mudah Post navigation PREVIOUS POST:MEMBUAT PAGINATION SEDERHANA DENGAN PHPNEXT POST:BELAJAR MEMBUAT TAMPILAN RESPONSIVE WEB DESIGN Kursus Online Web Design Android Search … CATEGORIES Artikel (146) Belajar Android (39) Belajar Google Adwords (7) Belajar Java (3) Belajar Photoshop (10) Belajar Python (20) Belajar React JS (31) Belajar React Native (6) Belajar SEO (19) Belajar Toko Online (15) Belajar Web Design (373) Belajar Web Programming (328) Belajar Wordpress (58) Info Jadwal Kursus (1,375) RECENT POSTS Python While Loops Belajar Python : Membuat List, Tupple dan Dictionary Pernyataan Python If … Else Dictionary Python Set Python TAG androidaplikasi androidBelajar Androidbelajar cssBelajar PHPbelajar php oopbelajar web desainbelajar web designbelajar web programmingbelajar websitebelajar wordpressblog websitecsscss3CSS Bootstrap Frameworkdesain websiteframeworkframework phpgoogleGoogle SEOHTMLhtml5html 5html cssjadwal kursusjavascriptjquerykursus androidkursus phpKursus PHP JakartaKursus PHP MySql JakartaKursus SEOkursus toko onlinekursus web designkursus websitekursus website JakartaMicrosoftMySQLphpphp frameworkphp programmingTempat Kursus Android Favorit di Jakarta Barat dan Jakarta Timurweb desainweb designwordpress WordPress Theme: Gridbox by ThemeZee.

کد متحرک ساختن عنوان

Hello world My first PHP page



css BEST WE WANT Best Useful Information Skip to content Home Best One Career Computer Coding How To Money Technology Contact Comment box Script in php with Reply and approve by admin Code Technique No comments For own developing website designers looking for comments display option in every page. In this article add PHP code for comment box script in PHP with Reply option and approve by admin. Every comment submitted by user, it will hole and need approve by admin, even reply comment also. Normally most of websites have auto approve comment code, or script in the form of jQuery, Ajax it will complex. The Comment box generated in php language, no need jquery, Ajax. This simple comment box with reply answer in php and comment approve by admin features supported ,following code. Basically If you use of jQuery and AJAX , code very complex for use and working. Every comment must approve or moderate by admin only. Each comment also support Reply answer either admin or user. In some other website contains comment box with Reply answer there. But that comment auto submit to page, no moderating or delete or edit option. In this article we clear explain as simple comment box in php with Reply answer and comment approve by admin. Features of Simple Comment Box with Reply Answer Simple php code uses, no need of jQuery and AJAX code Each comment uniquely identified by url i.e each page can maintain separate comments All comments and Reply comments must be approve or moderate by admin only User comments accept or delete or edit comment options available. One MySql table suitable for all works (Comments and Reply comments) One php code for comments display, One for creating comments. Auto focus available for Auto Reply comments. Comment box Script in php with Reply and approve by admin Comment box Script in php with Reply and approve by admin Steps to Creating Comment Box with reply Creating table ( tbl_comment.sql ) Comment box html code include Insert query ( commentbox.php ) Comments display php code with beautiful model css code inline tag ( commentlist.php ) Admin accept , reject , delete Comments menu option php code ( permissions.php ) How to use, any page inserting example ( index.php ) Use database setting file ( dbsetting.php ) Use image as comment avatar. To download Click Here Creating table ( tbl_comment.sql ) The following code as sql create table CREATE TABLE `tbl_comment` ( `cid` int(11) NOT NULL AUTO_INCREMENT, `pid` int(11) DEFAULT NULL, `comment` varchar(200) NOT NULL, `name` varchar(50) NOT NULL, `email` varchar(100) NOT NULL, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP 'current_url' varchar(200) NOT NULL, 'moderate' int(2) NOT NULL 0, 'reply' int(2) NOT NULL 0, ) ENGINE=InnoDB DEFAULT CHARSET=utf8; ALTER TABLE `tbl_comment` ADD PRIMARY KEY (`cid`); In the above sql table, Where cid --- comment id, is used to uniquely identified pid --- parent id , is used to Reply Comment purpose , this comment row display under the main comment comment --- actual comment as maximum 200 character length name --- comment author name email --- author email date --- Current date and time current_url --- display comment only that particular page only moderate --- gives either 0 or 1 0 -- No moderate or comment not approve by admin 1 -- moderated or comment approved by admin reply --- gives either 0 or 1 0 -- It is main comment , no reply comments 1 -- It is also main comment, but have some reply comments under of this Comment box html code include Insert query ( commentbox.php ) The following php code for creating comment asking box and Mysql Insert query within ".mysql_error()."

"; } if($s) { $sql="UPDATE tbl_comment SET reply = 1 WHERE cid = ".$_POST['rrpid'].";"; if(executeQuery($sql)) { $rs=1; } } } ?>
Please Fill the following form"; } ?>
Your name * '; } ?>
Your email *
Website :
Your message *